home *** CD-ROM | disk | FTP | other *** search
/ Enigma Amiga Life 109 / EnigmaAmiga109CD.iso / dalla rivista / host contacted / jikes.readme < prev    next >
Text File  |  2000-01-23  |  3KB  |  67 lines

  1. Short:    IBM's fast Java compiler, v1.11 (source)
  2. Author:   Philippe Charles and David Shields, IBM Research.
  3. Uploader: kyrimis@cti.gr (Kriton Kyrimis)
  4. Version:  1.11
  5. Type:     dev/lang
  6.  
  7. This is the source of the native Amiga port (no ixemul.library required)
  8. of jikes, the free Java compiler from IBM.
  9.  
  10. The distinction between stable and development version has been
  11. dropped, so the Aminet version is the latest version.  The relevant
  12. files can also be downloaded from the Amiga Jikes home page at
  13. http://dias.cti.gr/~kyrimis/jikes/ .
  14.  
  15. To build jikes on the Amiga, you need:
  16. * A wide character library (e.g., the simple wchar library that I have
  17.   extracted from the Jikes source, available at both Aminet and the Amiga
  18.   Jikes web site).
  19. * If you want to enable support for the "-encoding" option, then you must
  20.   also install ICU, IBM's International Classes for Unicode. (This
  21.   library also requires a wide character library, which is the reason
  22.   why the Jikes wide character code cannot be used in place.)
  23.  
  24. You can then either run the configure script, e.g., type "LIBS=-lw
  25. configure --prefix=/gg" from sh and tweak the resulting Makefile, or
  26. simply copy Makefile.amiga to Makefile.  If you use Makefile.amiga, note
  27. that support for "-encoding" is turned on, so you will have to disable
  28. it if you do not want it. (The relevant items in the Makefile are the
  29. "-DHAVE_LIB_ICU_UC" option in CXXREQUIREDFLAGS and the -licu-uc option
  30. in LIBS.)
  31.  
  32. Before typing "make", you may want to make the following changes to the
  33. Makefile:
  34. * Change the CPU and FPU options.
  35. * Change the optimization level. Note that using -O2 will produce a binary
  36.   that is about a megabyte larger, and the resulting gains in compilation
  37.   time will be overwhelmed by the additional loading time. Also note that
  38.   you will need at least 70M of memory to compile jikes with -O2, i.e.,
  39.   you will most likely need to use VMM, and that on a 68040@28MHz it
  40.   takes about a day to produce the optimized binary. In other words,
  41.   don't bother.
  42.  
  43. INSTALLATION:
  44. Simply copy the jikes executable somewhere in your path.
  45.  
  46. USAGE:
  47. Set either the CLASSPATH or the JIKESPATH environment variable to point
  48. to the directories and zip/jar files that you want your compiler to use.
  49. E.g., if you are using Kaffe, you can say:
  50. setenv CLASSPATH "GG:share/kaffe/Klasses.jar;GG:share/kaffe/Pizza.jar;."
  51. Separate the path components using semicolons. You can use UNIX "." and ".."
  52. notation for the current directory and for the parent directory of a
  53. directory.
  54.  
  55. If you find a bug in the Amiga port, you can contact me at kyrimis@cti.gr
  56. and I'll see what I can do.
  57.  
  58. Kriton Kyrimis.
  59.  
  60. ******************************************************************************
  61. This software is subject to the terms of the IBM Public License, available
  62. at the following URL:
  63. http://OSS.Software.IBM.Com/developerworks/opensource/license10.html.
  64. Copyright (C) 1996-2000 International Business Machines Corporation
  65. and others.  All Rights Reserved.
  66. ******************************************************************************
  67.